ea7caf1d3423688cf53451e8ab69b21eaa72e8f6,src/main/java/com/fasterxml/jackson/module/jsonSchema/JsonSchema.java,JsonSchema,equals,#Object#,252

Before Change


	    return that.getType() == getType() &&
	            getRequired() == null ? that.getRequired() == null : 
	                getRequired().equals(that.getRequired()) &&
	                get$ref() == null ? that.get$ref() == null : 
    					    get$ref().equals(that.get$ref()) &&
    					    get$schema() == null ? that.get$schema() == null : 
    						get$schema().equals(that.get$schema()) &&
    					getDisallow() == null ? that.getDisallow() == null : 
    						getDisallow().equals(that.getDisallow()) &&
    					getExtends() == null ? that.getExtends() == null : 
    						getExtends().equals(that.getExtends());
	}
	

After Change


	    		equals(get$ref(), that.get$ref()) &&
	    		equals(get$schema(), that.get$schema()) &&
	    		equals(getDisallow(), that.getDisallow()) &&
	    		equals(getExtends(), that.getExtends());
	}
	
	public String get$ref() {